home *** CD-ROM | disk | FTP | other *** search
/ Giga Games 1 / Giga Games.iso / net / hack / 3_1_3 / sys / vms / lev_lex.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-02-21  |  504 b   |  18 lines

  1. /*    SCCS Id: @(#)lev_lex.h    3.1    93/02/07    */
  2. /* "vms/lev_lex.h" copied into "util/stdio.h" for use by lev_lex.c only!
  3.  * This is an awful kludge to allow util/lev_lex.c to be compiled as is.
  4.  * It works because the actual setup of yyin & yyout is performed in
  5.  * src/lev_main.c, where stdin & stdout are still correctly defined.
  6.  */
  7. /* note for 3.1: also used with util/dgn_lex.c */
  8.  
  9. #include <stdio.h>
  10. #ifdef stdin
  11. # undef stdin
  12. #endif
  13. #define stdin  0
  14. #ifdef stdout
  15. # undef stdout
  16. #endif
  17. #define stdout 0
  18.